time.Time.nsec (method)
19 uses
time (current package)
time.go#L176: func (t *Time) nsec() int32 {
time.go#L277: return ts > us || ts == us && t.nsec() > u.nsec()
time.go#L287: return ts < us || ts == us && t.nsec() < u.nsec()
time.go#L299: tc, uc = int64(t.nsec()), int64(u.nsec())
time.go#L320: return t.sec() == u.sec() && t.nsec() == u.nsec()
time.go#L902: return int(t.nsec())
time.go#L1172: nsec := t.nsec() + int32(d%1e9)
time.go#L1202: d := Duration(t.sec()-u.sec())*Second + Duration(t.nsec()-u.nsec())
time.go#L1265: return Date(year+years, month+Month(months), day+days, hour, min, sec, int(t.nsec()), t.Location())
time.go#L1442: return t.unixSec()*1e3 + int64(t.nsec())/1e6
time.go#L1451: return t.unixSec()*1e6 + int64(t.nsec())/1e3
time.go#L1461: return (t.unixSec())*1e9 + int64(t.nsec())
time.go#L1492: nsec := t.nsec()
time.go#L1816: nsec := t.nsec()
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |